# # This script was written by David Maciejak # # Ref: Positive Technologies - www.maxpatrol.com # This script is released under the GNU GPLv2 # if(description) { script_id(15556); script_bugtraq_id(11428); script_version("$Revision: 1.2 $"); script_name(english:"DevoyBB multiple flaws"); desc["english"] = " The remote host is running DevoyBB, a web based forum written in PHP. This version is vulnerable to XSS and SQL injection attacks. A malicious user can access users cookies including authentication cookies and inject SQL commands to be executed on the underlying database. Solution: Upgraded to the latest version Risk factor : High"; script_description(english:desc["english"]); script_summary(english:"Checks DevoyBB version"); script_category(ACT_GATHER_INFO); script_copyright(english:"This script is Copyright (C) 2004 David Maciejak"); script_family(english:"CGI abuses : XSS"); script_require_ports("Services/www", 80); script_dependencie("http_version.nasl"); exit(0); } # the code! include("http_func.inc"); include("http_keepalive.inc"); function check(req) { buf = http_get(item:string(req,"/index.php"), port:port); r = http_keepalive_send_recv(port:port, data:buf, bodyonly:1); if( r == NULL )exit(0); if(egrep(pattern:" - Powered by DevoyBB.*Powered by DevoyBB (0\..*|1\.0\.0)", string:r)) { http_close_socket(soc); security_hole(port); exit(0); } } port = get_http_port(default:80); if ( ! port ) exit(0); if(!get_port_state(port)) exit(0); if(!can_host_php(port:port))exit(0); soc = http_open_socket(port); if(soc) { foreach dir (cgi_dirs()) { check(req:dir); } http_close_socket(soc); } exit(0);